home *** CD-ROM | disk | FTP | other *** search
/ Mac Format 1994 October / Macformat17.cdr / Shareware City / Developers / shutdown-fx-201-c / sfx ƒ / sfx control app ƒ / sfx code ƒ / sfx.c < prev    next >
Text File  |  1994-07-11  |  2KB  |  79 lines

  1. /**********************************************************************\
  2.  
  3. File:        sfx.c
  4.  
  5. Purpose:    This module handles demo initialization/shutdown and a
  6.             dispatch for the graphic effects and fades.
  7.  
  8. This program is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 2 of the License, or
  11. (at your option) any later version.
  12.  
  13. This program is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with this program in a file named "GNU General Public License".
  20. If not, write to the Free Software Foundation, 675 Mass Ave,
  21. Cambridge, MA 02139, USA.
  22.  
  23. \**********************************************************************/
  24.  
  25. #include "sfx.h"
  26. #include "sfx main window.h"
  27. #include "sfx install.h"
  28. #include "sfx gestalt.h"
  29. #include "program globals.h"
  30. #include "error.h"
  31.  
  32. short            gModuleIndex;
  33. char            gChooseRandom, gOnRestart, gOnShutdown, gFadeEarly;
  34. Str255            gModuleName;
  35.  
  36. void InitTheProgram(void)
  37. {
  38.     gModuleName[0]=0x00;
  39.     
  40.     if (!sfxGestaltFunctionInstalledQQ())
  41.     {
  42.         HandleError(MakeNewGestaltSelectors(), TRUE, FALSE);
  43.         HandleError(SetGestaltProcPtrs(0L, 0L, 0L), FALSE, FALSE);
  44.         HandleError(InstallTheShutdownProc(0, "\p", gOnShutdown, gOnRestart, gFadeEarly,
  45.                         FALSE, TRUE), FALSE, FALSE);
  46.     }
  47.     else
  48.     {
  49.         HandleError(RemoveTheFade(), FALSE, FALSE);
  50.     }
  51.     
  52.     SetIndDispatchProc(kMainWindow, MainWindowDispatch);
  53.     CallIndDispatchProc(kMainWindow, kStartup, 0L);
  54.     CallIndDispatchProc(kHelp, kStartup, 0L);    /* must be called after PreferencesInit */
  55. }
  56.  
  57. void ShutDownTheProgram(void)
  58. {
  59.     enum ErrorTypes    resultCode;
  60.     
  61.     CallIndDispatchProc(kMainWindow, kShutdown, 0L);
  62.     
  63.     resultCode=allsWell;
  64.     if (gModuleName[0]!=0x00)
  65.         resultCode=InstallTheShutdownProc(gModuleIndex, gModuleName, gOnShutdown,
  66.             gOnRestart, gFadeEarly, TRUE, FALSE);
  67.     if (resultCode!=allsWell)
  68.     {
  69.         switch (resultCode)
  70.         {
  71.             case kModuleDamaged:
  72.             case kCantOpenModule:
  73.                 SetErrorParameters("\pFade module: ", gModuleName, "\p");
  74.                 HandleError(resultCode, FALSE, TRUE);
  75.                 break;
  76.         }
  77.     }
  78. }
  79.